Libgaim.framework r 366, which is libgaim r 18072. Fixes Jabber roster request probl...
[adiumx.git] / Plugins / Gaim Service / Libgaim.framework / Versions / A / Headers / notify.h
blobbd111b21faab74638e18f1964c61390cb2e15586
1 /**
2 * @file notify.h Notification API
3 * @ingroup core
5 * gaim
7 * Gaim is the legal property of its developers, whose names are too numerous
8 * to list here. Please refer to the COPYRIGHT file distributed with this
9 * source distribution.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #ifndef _GAIM_NOTIFY_H_
26 #define _GAIM_NOTIFY_H_
28 #include <stdlib.h>
29 #include <glib-object.h>
30 #include <glib.h>
32 typedef struct _GaimNotifyUserInfoEntry GaimNotifyUserInfoEntry;
33 typedef struct _GaimNotifyUserInfo GaimNotifyUserInfo;
35 #include "connection.h"
37 /**
38 * Notification close callbacks.
40 typedef void (*GaimNotifyCloseCallback) (gpointer user_data);
43 /**
44 * Notification types.
46 typedef enum
48 GAIM_NOTIFY_MESSAGE = 0, /**< Message notification. */
49 GAIM_NOTIFY_EMAIL, /**< Single e-mail notification. */
50 GAIM_NOTIFY_EMAILS, /**< Multiple e-mail notification. */
51 GAIM_NOTIFY_FORMATTED, /**< Formatted text. */
52 GAIM_NOTIFY_SEARCHRESULTS, /**< Buddy search results. */
53 GAIM_NOTIFY_USERINFO, /**< Formatted userinfo text. */
54 GAIM_NOTIFY_URI /**< URI notification or display. */
56 } GaimNotifyType;
59 /**
60 * Notification message types.
62 typedef enum
64 GAIM_NOTIFY_MSG_ERROR = 0, /**< Error notification. */
65 GAIM_NOTIFY_MSG_WARNING, /**< Warning notification. */
66 GAIM_NOTIFY_MSG_INFO /**< Information notification. */
68 } GaimNotifyMsgType;
71 /**
72 * The types of buttons
74 typedef enum
76 GAIM_NOTIFY_BUTTON_LABELED = 0, /**< special use, see _button_add_labeled */
77 GAIM_NOTIFY_BUTTON_CONTINUE = 1,
78 GAIM_NOTIFY_BUTTON_ADD,
79 GAIM_NOTIFY_BUTTON_INFO,
80 GAIM_NOTIFY_BUTTON_IM,
81 GAIM_NOTIFY_BUTTON_JOIN,
82 GAIM_NOTIFY_BUTTON_INVITE
83 } GaimNotifySearchButtonType;
86 /**
87 * Search results object.
89 typedef struct
91 GList *columns; /**< List of the search column objects. */
92 GList *rows; /**< List of rows in the result. */
93 GList *buttons; /**< List of buttons to display. */
95 } GaimNotifySearchResults;
97 /**
98 * Types of GaimNotifyUserInfoEntry objects
100 typedef enum
102 GAIM_NOTIFY_USER_INFO_ENTRY_PAIR = 0,
103 GAIM_NOTIFY_USER_INFO_ENTRY_SECTION_BREAK,
104 GAIM_NOTIFY_USER_INFO_ENTRY_SECTION_HEADER
105 } GaimNotifyUserInfoEntryType;
108 * Single column of a search result.
110 typedef struct
112 char *title; /**< Title of the column. */
114 } GaimNotifySearchColumn;
118 * Callback for a button in a search result.
120 * @param c the GaimConnection passed to gaim_notify_searchresults
121 * @param row the contents of the selected row
122 * @param user_data User defined data.
124 typedef void (*GaimNotifySearchResultsCallback)(GaimConnection *c, GList *row,
125 gpointer user_data);
129 * Definition of a button.
131 typedef struct
133 GaimNotifySearchButtonType type;
134 GaimNotifySearchResultsCallback callback; /**< Function to be called when clicked. */
135 char *label; /**< only for GAIM_NOTIFY_BUTTON_LABELED */
136 } GaimNotifySearchButton;
140 * Notification UI operations.
142 typedef struct
144 void *(*notify_message)(GaimNotifyMsgType type, const char *title,
145 const char *primary, const char *secondary);
147 void *(*notify_email)(GaimConnection *gc,
148 const char *subject, const char *from,
149 const char *to, const char *url);
151 void *(*notify_emails)(GaimConnection *gc,
152 size_t count, gboolean detailed,
153 const char **subjects, const char **froms,
154 const char **tos, const char **urls);
156 void *(*notify_formatted)(const char *title, const char *primary,
157 const char *secondary, const char *text);
159 void *(*notify_searchresults)(GaimConnection *gc, const char *title,
160 const char *primary, const char *secondary,
161 GaimNotifySearchResults *results, gpointer user_data);
163 void (*notify_searchresults_new_rows)(GaimConnection *gc,
164 GaimNotifySearchResults *results,
165 void *data);
167 void *(*notify_userinfo)(GaimConnection *gc, const char *who,
168 GaimNotifyUserInfo *user_info);
170 void *(*notify_uri)(const char *uri);
172 void (*close_notify)(GaimNotifyType type, void *ui_handle);
174 } GaimNotifyUiOps;
177 #ifdef __cplusplus
178 extern "C" {
179 #endif
182 /**************************************************************************/
183 /** Search results notification API */
184 /**************************************************************************/
185 /*@{*/
188 * Displays results from a buddy search. This can be, for example,
189 * a window with a list of all found buddies, where you are given the
190 * option of adding buddies to your buddy list.
192 * @param gc The GaimConnection handle associated with the information.
193 * @param title The title of the message. If this is NULL, the title
194 * will be "Search Results."
195 * @param primary The main point of the message.
196 * @param secondary The secondary information.
197 * @param results The GaimNotifySearchResults instance.
198 * @param cb The callback to call when the user closes
199 * the notification.
200 * @param user_data The data to pass to the close callback and any other
201 * callback associated with a button.
203 * @return A UI-specific handle.
205 void *gaim_notify_searchresults(GaimConnection *gc, const char *title,
206 const char *primary, const char *secondary,
207 GaimNotifySearchResults *results, GaimNotifyCloseCallback cb,
208 gpointer user_data);
210 void gaim_notify_searchresults_free(GaimNotifySearchResults *results);
213 * Replace old rows with the new. Reuse an existing window.
215 * @param gc The GaimConnection structure.
216 * @param results The GaimNotifySearchResults structure.
217 * @param data Data returned by the gaim_notify_searchresults().
219 void gaim_notify_searchresults_new_rows(GaimConnection *gc,
220 GaimNotifySearchResults *results,
221 void *data);
225 * Adds a stock button that will be displayed in the search results dialog.
227 * @param results The search results object.
228 * @param type Type of the button. (TODO: Only one button of a given type can be displayed.)
229 * @param cb Function that will be called on the click event.
231 void gaim_notify_searchresults_button_add(GaimNotifySearchResults *results,
232 GaimNotifySearchButtonType type,
233 GaimNotifySearchResultsCallback cb);
237 * Adds a plain labelled button that will be displayed in the search results dialog.
239 * @param results The search results object
240 * @param label The label to display
241 * @param cb Function that will be called on the click event
243 void gaim_notify_searchresults_button_add_labeled(GaimNotifySearchResults *results,
244 const char *label,
245 GaimNotifySearchResultsCallback cb);
249 * Returns a newly created search results object.
251 * @return The new search results object.
253 GaimNotifySearchResults *gaim_notify_searchresults_new(void);
256 * Returns a newly created search result column object.
258 * @param title Title of the column. NOTE: Title will get g_strdup()ed.
260 * @return The new search column object.
262 GaimNotifySearchColumn *gaim_notify_searchresults_column_new(const char *title);
265 * Adds a new column to the search result object.
267 * @param results The result object to which the column will be added.
268 * @param column The column that will be added to the result object.
270 void gaim_notify_searchresults_column_add(GaimNotifySearchResults *results,
271 GaimNotifySearchColumn *column);
274 * Adds a new row of the results to the search results object.
276 * @param results The search results object.
277 * @param row The row of the results.
279 void gaim_notify_searchresults_row_add(GaimNotifySearchResults *results,
280 GList *row);
283 * Returns a number of the rows in the search results object.
285 * @param results The search results object.
287 * @return Number of the result rows.
289 guint gaim_notify_searchresults_get_rows_count(GaimNotifySearchResults *results);
292 * Returns a number of the columns in the search results object.
294 * @param results The search results object.
296 * @return Number of the columns.
298 guint gaim_notify_searchresults_get_columns_count(GaimNotifySearchResults *results);
301 * Returns a row of the results from the search results object.
303 * @param results The search results object.
304 * @param row_id Index of the row to be returned.
306 * @return Row of the results.
308 GList *gaim_notify_searchresults_row_get(GaimNotifySearchResults *results,
309 unsigned int row_id);
312 * Returns a title of the search results object's column.
314 * @param results The search results object.
315 * @param column_id Index of the column.
317 * @return Title of the column.
319 char *gaim_notify_searchresults_column_get_title(GaimNotifySearchResults *results,
320 unsigned int column_id);
322 /*@}*/
324 /**************************************************************************/
325 /** @name Notification API */
326 /**************************************************************************/
327 /*@{*/
330 * Displays a notification message to the user.
332 * @param handle The plugin or connection handle.
333 * @param type The notification type.
334 * @param title The title of the message.
335 * @param primary The main point of the message.
336 * @param secondary The secondary information.
337 * @param cb The callback to call when the user closes
338 * the notification.
339 * @param user_data The data to pass to the callback.
341 * @return A UI-specific handle.
343 void *gaim_notify_message(void *handle, GaimNotifyMsgType type,
344 const char *title, const char *primary,
345 const char *secondary, GaimNotifyCloseCallback cb,
346 gpointer user_data);
349 * Displays a single e-mail notification to the user.
351 * @param handle The plugin or connection handle.
352 * @param subject The subject of the e-mail.
353 * @param from The from address.
354 * @param to The destination address.
355 * @param url The URL where the message can be read.
356 * @param cb The callback to call when the user closes
357 * the notification.
358 * @param user_data The data to pass to the callback.
360 * @return A UI-specific handle.
362 void *gaim_notify_email(void *handle, const char *subject,
363 const char *from, const char *to,
364 const char *url, GaimNotifyCloseCallback cb,
365 gpointer user_data);
368 * Displays a notification for multiple e-mails to the user.
370 * @param handle The plugin or connection handle.
371 * @param count The number of e-mails.
372 * @param detailed @c TRUE if there is information for each e-mail in the
373 * arrays.
374 * @param subjects The array of subjects.
375 * @param froms The array of from addresses.
376 * @param tos The array of destination addresses.
377 * @param urls The URLs where the messages can be read.
378 * @param cb The callback to call when the user closes
379 * the notification.
380 * @param user_data The data to pass to the callback.
382 * @return A UI-specific handle.
384 void *gaim_notify_emails(void *handle, size_t count, gboolean detailed,
385 const char **subjects, const char **froms,
386 const char **tos, const char **urls,
387 GaimNotifyCloseCallback cb, gpointer user_data);
390 * Displays a notification with formatted text.
392 * The text is essentially a stripped-down format of HTML, the same that
393 * IMs may send.
395 * @param handle The plugin or connection handle.
396 * @param title The title of the message.
397 * @param primary The main point of the message.
398 * @param secondary The secondary information.
399 * @param text The formatted text.
400 * @param cb The callback to call when the user closes
401 * the notification.
402 * @param user_data The data to pass to the callback.
404 * @return A UI-specific handle.
406 void *gaim_notify_formatted(void *handle, const char *title,
407 const char *primary, const char *secondary,
408 const char *text, GaimNotifyCloseCallback cb, gpointer user_data);
411 * Displays user information with formatted text, passing information giving
412 * the connection and username from which the user information came.
414 * The text is essentially a stripped-down format of HTML, the same that
415 * IMs may send.
417 * @param gc The GaimConnection handle associated with the information.
418 * @param who The username associated with the information.
419 * @param user_info The GaimNotifyUserInfo which contains the information
420 * @param cb The callback to call when the user closes
421 * the notification.
422 * @param user_data The data to pass to the callback.
424 * @return A UI-specific handle.
426 void *gaim_notify_userinfo(GaimConnection *gc, const char *who,
427 GaimNotifyUserInfo *user_info, GaimNotifyCloseCallback cb,
428 gpointer user_data);
431 * Create a new GaimNotifyUserInfo which is suitable for passing to gaim_notify_userinfo()
433 * @return A new GaimNotifyUserInfo, which the caller must destroy when done
435 GaimNotifyUserInfo *gaim_notify_user_info_new(void);
438 * Destroy a GaimNotifyUserInfo
440 * @param user_info The GaimNotifyUserInfo
442 void gaim_notify_user_info_destroy(GaimNotifyUserInfo *user_info);
445 * Retrieve the array of GaimNotifyUserInfoEntry objects from a GaimNotifyUserInfo
447 * This GList may be manipulated directly with normal GList functions such as g_list_insert(). Only
448 * GaimNotifyUserInfoEntry are allowed in the list. If a GaimNotifyUserInfoEntry item is added to the list,
449 * it should not be g_free()'d by the caller; GaimNotifyUserInfo will g_free it when destroyed.
451 * To remove a GaimNotifyUserInfoEntry, use gaim_notify_user_info_remove_entry(). Do not use the GList directly.
453 * @param user_info The GaimNotifyUserInfo
455 * @result A GList of GaimNotifyUserInfoEntry objects
457 GList *gaim_notify_user_info_get_entries(GaimNotifyUserInfo *user_info);
460 * Create a textual representation of a GaimNotifyUserInfo, separating entries with newline
462 * @param user_info The GaimNotifyUserInfo
463 * @param newline The separation character
465 char *gaim_notify_user_info_get_text_with_newline(GaimNotifyUserInfo *user_info, const char *newline);
468 * Add a label/value pair to a GaimNotifyUserInfo object.
469 * GaimNotifyUserInfo keeps track of the order in which pairs are added.
471 * @param user_info The GaimNotifyUserInfo
472 * @param label A label, which for example might be displayed by a UI with a colon after it ("Status:"). Do not include a colon.
473 * If NULL, value will be displayed without a label.
474 * @param value The value, which might be displayed by a UI after the label.
475 * If NULL, label will still be displayed; the UI should then treat label as independent
476 * and not include a colon if it would otherwise.
478 void gaim_notify_user_info_add_pair(GaimNotifyUserInfo *user_info, const char *label, const char *value);
481 * Prepend a label/value pair to a GaimNotifyUserInfo object
483 * @param user_info The GaimNotifyUserInfo
484 * @param label A label, which for example might be displayed by a UI with a colon after it ("Status:"). Do not include a colon.
485 * If NULL, value will be displayed without a label.
486 * @param value The value, which might be displayed by a UI after the label.
487 * If NULL, label will still be displayed; the UI should then treat label as independent
488 * and not include a colon if it would otherwise.
490 void gaim_notify_user_info_prepend_pair(GaimNotifyUserInfo *user_info, const char *label, const char *value);
493 * Remove a GaimNotifyUserInfoEntry from a GaimNotifyUserInfo object
495 * @param user_info The GaimNotifyUserInfo
496 * @param user_info_entry The GaimNotifyUserInfoEntry
498 void gaim_notify_user_info_remove_entry(GaimNotifyUserInfo *user_info, GaimNotifyUserInfoEntry *user_info_entry);
500 * Create a new GaimNotifyUserInfoEntry
502 * If added to a GaimNotifyUserInfo object, this should not be free()'d, as GaimNotifyUserInfo will do so
503 * when destroyed. gaim_notify_user_info_add_pair() and gaim_notify_user_info_prepend_pair() are convenience
504 * methods for creating entries and adding them to a GaimNotifyUserInfo.
506 * @param label A label, which for example might be displayed by a UI with a colon after it ("Status:"). Do not include a colon.
507 * If NULL, value will be displayed without a label.
508 * @param value The value, which might be displayed by a UI after the label.
509 * If NULL, label will still be displayed; the UI should then treat label as independent
510 * and not include a colon if it would otherwise.
512 * @result A new GaimNotifyUserInfoEntry
514 GaimNotifyUserInfoEntry *gaim_notify_user_info_entry_new(const char *label, const char *value);
517 * Add a section break. A UI might display this as a horizontal line.
519 * @param user_info The GaimNotifyUserInfo
521 void gaim_notify_user_info_add_section_break(GaimNotifyUserInfo *user_info);
524 * Add a section header. A UI might display this in a different font from other text.
526 * @param user_info The GaimNotifyUserInfo
527 * @param label The name of the section
529 void gaim_notify_user_info_add_section_header(GaimNotifyUserInfo *user_info, const char *label);
532 * Remove the last item which was added to a GaimNotifyUserInfo. This could be used to remove a section header which is not needed.
534 void gaim_notify_user_info_remove_last_item(GaimNotifyUserInfo *user_info);
537 * Get the label for a GaimNotifyUserInfoEntry
539 * @param user_info_entry The GaimNotifyUserInfoEntry
541 * @result The label
543 gchar *gaim_notify_user_info_entry_get_label(GaimNotifyUserInfoEntry *user_info_entry);
546 * Set the label for a GaimNotifyUserInfoEntry
548 * @param user_info_entry The GaimNotifyUserInfoEntry
549 * @param label The label
551 void gaim_notify_user_info_entry_set_label(GaimNotifyUserInfoEntry *user_info_entry, const char *label);
554 * Get the value for a GaimNotifyUserInfoEntry
556 * @param user_info_entry The GaimNotifyUserInfoEntry
558 * @result The value
560 gchar *gaim_notify_user_info_entry_get_value(GaimNotifyUserInfoEntry *user_info_entry);
563 * Set the value for a GaimNotifyUserInfoEntry
565 * @param user_info_entry The GaimNotifyUserInfoEntry
566 * @param value The value
568 void gaim_notify_user_info_entry_set_value(GaimNotifyUserInfoEntry *user_info_entry, const char *value);
572 * Get the type of a GaimNotifyUserInfoEntry
574 * @param user_info_entry The GaimNotifyUserInfoEntry
576 * @result The GaimNotifyUserInfoEntryType
578 GaimNotifyUserInfoEntryType gaim_notify_user_info_entry_get_type(GaimNotifyUserInfoEntry *user_info_entry);
581 * Set the type of a GaimNotifyUserInfoEntry
583 * @param user_info_entry The GaimNotifyUserInfoEntry
584 * @param The GaimNotifyUserInfoEntryType
586 void gaim_notify_user_info_entry_set_type(GaimNotifyUserInfoEntry *user_info_entry,
587 GaimNotifyUserInfoEntryType type);
590 * Opens a URI or somehow presents it to the user.
592 * @param handle The plugin or connection handle.
593 * @param uri The URI to display or go to.
595 * @return A UI-specific handle, if any. This may only be presented if
596 * the UI code displays a dialog instead of a webpage, or something
597 * similar.
599 void *gaim_notify_uri(void *handle, const char *uri);
602 * Closes a notification.
604 * This should be used only by the UI operation functions and part of the
605 * core.
607 * @param type The notification type.
608 * @param ui_handle The notification UI handle.
610 void gaim_notify_close(GaimNotifyType type, void *ui_handle);
613 * Closes all notifications registered with the specified handle.
615 * @param handle The handle.
617 void gaim_notify_close_with_handle(void *handle);
620 * A wrapper for gaim_notify_message that displays an information message.
622 #define gaim_notify_info(handle, title, primary, secondary) \
623 gaim_notify_message((handle), GAIM_NOTIFY_MSG_INFO, (title), \
624 (primary), (secondary), NULL, NULL)
627 * A wrapper for gaim_notify_message that displays a warning message.
629 #define gaim_notify_warning(handle, title, primary, secondary) \
630 gaim_notify_message((handle), GAIM_NOTIFY_MSG_WARNING, (title), \
631 (primary), (secondary), NULL, NULL)
634 * A wrapper for gaim_notify_message that displays an error message.
636 #define gaim_notify_error(handle, title, primary, secondary) \
637 gaim_notify_message((handle), GAIM_NOTIFY_MSG_ERROR, (title), \
638 (primary), (secondary), NULL, NULL)
640 /*@}*/
642 /**************************************************************************/
643 /** @name UI Registration Functions */
644 /**************************************************************************/
645 /*@{*/
648 * Sets the UI operations structure to be used when displaying a
649 * notification.
651 * @param ops The UI operations structure.
653 void gaim_notify_set_ui_ops(GaimNotifyUiOps *ops);
656 * Returns the UI operations structure to be used when displaying a
657 * notification.
659 * @return The UI operations structure.
661 GaimNotifyUiOps *gaim_notify_get_ui_ops(void);
663 /*@}*/
665 /**************************************************************************/
666 /** @name Notify Subsystem */
667 /**************************************************************************/
668 /*@{*/
671 * Returns the notify subsystem handle.
673 * @return The notify subsystem handle.
675 void *gaim_notify_get_handle(void);
678 * Initializes the notify subsystem.
680 void gaim_notify_init(void);
683 * Uninitializes the notify subsystem.
685 void gaim_notify_uninit(void);
687 /*@}*/
690 #ifdef __cplusplus
692 #endif
694 #endif /* _GAIM_NOTIFY_H_ */